mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-21 07:21:40 -04:00
6 lines
84 B
Bash
6 lines
84 B
Bash
#!/bin/bash
|
|
|
|
if [[ ! -f file.txt ]] ; then
|
|
echo 'hello' > file.txt
|
|
exit 1
|
|
fi |