fix(ds-fr): Fix formatting
All checks were successful
lint / check (push) Successful in 31s
build configuration / build_web02 (push) Successful in 59s
build configuration / build_vault01 (push) Successful in 59s
build configuration / build_storage01 (push) Successful in 1m2s
build configuration / build_compute01 (push) Successful in 1m6s
build configuration / build_web01 (push) Successful in 1m20s

This commit is contained in:
Tom Hubrecht 2024-02-09 09:46:32 +01:00
parent c95908d0b3
commit 45618cb180

View file

@ -39,22 +39,16 @@ else
version="$(git rev-parse HEAD)"
fi
echo "[+] ds-fr version:"
echo "- $version"
# Generate gemset.nix
echo "[+] Updating gem files"
nix-shell -p bundix --run "bundix -l" >/dev/null
# Copy the new files
cp gemset.nix Gemfile Gemfile.lock "$CWD/rubyEnv/"
# Print the new source details
echo "[+] New hash:"
SRC_HASH=$(nix-shell -p nurl --run "nurl --hash $gitUrl $version")
# Print Yarn deps hash
echo "[+] New dependencies hash:"
hash=$(nix-shell -p prefetch-yarn-deps --run "prefetch-yarn-deps yarn.lock")
DEPS_HASH=$(nix-hash --to-sri --type sha256 "$hash")
@ -67,6 +61,6 @@ cat <<EOF >"$CWD/meta.nix"
}
EOF
nixfmt .
nixfmt "$CWD"
rm -rf "$TMP"