Skip to content

Commit 0363920

Browse files
committed
ci: dont fail downloading artifacts if no firecracker binaries exist
If the CI artifacts dont contain old firecracker releases, still succeed at setting them up after downloading them. Signed-off-by: Patrick Roy <roypat@amazon.co.uk>
1 parent b08ce58 commit 0363920

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/setup-ci-artifacts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ say "Setup CI artifacts"
1212
cd build/img/$(uname -m)
1313

1414
say "Fix executable permissions"
15-
find "firecracker" -type f |xargs chmod -c 755
15+
find "firecracker" -type f |xargs chmod -c 755 || true
1616

1717
say "Generate SSH key to connect from host"
1818
if [ ! -s id_rsa ]; then

0 commit comments

Comments
 (0)