mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-26 19:41:06 -05:00
6 lines
No EOL
84 B
Bash
6 lines
No EOL
84 B
Bash
#!/bin/bash
|
|
|
|
if [[ ! -f file.txt ]] ; then
|
|
echo 'hello' > file.txt
|
|
exit 1
|
|
fi |