Skip to content

Commit

Permalink
Fix logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems authored Sep 27, 2023
1 parent 5b33dde commit 6b9cd75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ build-tag(){
fi
fi
fi
if [ $rebuild -neq 0 ] || [ $updates != 0 ] || docker manifest inspect $target > /dev/null || docker manifest inspect "registry.eeems.codes/$image" > /dev/null;then
if [ $rebuild != 0 ] || [ $updates != 0 ] || docker manifest inspect $target > /dev/null || docker manifest inspect "registry.eeems.codes/$image" > /dev/null;then
status "Building image '$image'"
echo "$hash" > .hash
cat Dockerfile > .tmp.dockerfile
Expand Down

0 comments on commit 6b9cd75

Please sign in to comment.