commit 6fdd836b699eb90fb8ff9dc2ce9df13c0f8f1eec parent ef5814775ea1089d7dc3aeb6deac4525381a773b Author: Vincent Demeester <vincent@sbr.pm> Date: Thu, 1 Sep 2022 15:28:37 +0200 systems/aomi: build 1.7 and fix shell quotes of hell Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | systems/hosts/aomi.nix | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/systems/hosts/aomi.nix b/systems/hosts/aomi.nix @@ -192,14 +192,14 @@ in git rebase upstream/main # Make versions make versions - for v in 1.8 1.9; do + for v in 1.7 1.8 1.9; do echo "Build $v" ( cd versions/$v git clean -fd git reset --hard HEAD git co upstream/pipelines-$v-rhel-8 - nix-shell /home/vincent/src/osp/shell.nix --command 'make REMOTE=quay.io/vdemeest TAG=$v sources/upgrade sources/operator/fetch-payload bundle/push' + nix-shell /home/vincent/src/osp/shell.nix --command "make REMOTE=quay.io/vdemeest TAG=$v sources/upgrade sources/operator/fetch-payload bundle/push" ) done '';