use double quotes instead of single quotes
This commit is contained in:
parent
5a246e4ccf
commit
818882be5d
1 changed files with 2 additions and 2 deletions
4
.github/workflows/update.yml
vendored
4
.github/workflows/update.yml
vendored
|
@ -20,13 +20,13 @@ jobs:
|
|||
- id: update-step
|
||||
run: |
|
||||
for job in nixos-8gb-fsn1-1 nutty-noon thinkrac installer nas; do
|
||||
nix show-derivation '.#hydraJobs.$job.x86_64-linux' > old-$job.json
|
||||
nix show-derivation ".#hydraJobs.$job.x86_64-linux" > old-$job.json
|
||||
done
|
||||
|
||||
nix flake update
|
||||
|
||||
for job in nixos-8gb-fsn1-1 nutty-noon thinkrac installer nas; do
|
||||
nix show-derivation '.#hydraJobs.$job.x86_64-linux' > new-$job.json
|
||||
nix show-derivation ".#hydraJobs.$job.x86_64-linux" > new-$job.json
|
||||
|
||||
python scripts/diff-drvs old-$job.json new-$job.json > report-$job.txt
|
||||
cat report-$job.txt >> full-report.txt
|
||||
|
|
Loading…
Reference in a new issue