mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-21 07:21:40 -04:00
7 lines
160 B
Bash
Executable File
7 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# On first try, exits 1; on second try, passes.
|
|
if [[ ! -f test-fixtures/file.txt ]] ; then
|
|
echo 'hello' > test-fixtures/file.txt
|
|
exit 1
|
|
fi |