Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: env update #290

Merged
merged 2 commits into from
Jul 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# Dependencies: git, ripgrep

set -uo pipefail
set -ueo pipefail

function publish-folder()
{
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# Dependencies: git, cargo-edit, ripgrep

set -uo pipefail
set -ueo pipefail

function update-cargo-versions()
{
Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let
moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
# Pin to stable from https://status.nixos.org/
nixpkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/71d7a4c037dc4f3e98d5c4a81b941933cf5bf675.tar.gz") { overlays = [ moz_overlay ]; };
nixpkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/d9536b9b1e33377fb520e115bc8588d093ed97be.tar.gz") { overlays = [ moz_overlay ]; };
in
with nixpkgs;
stdenv.mkDerivation {
Expand Down