Spaces:
Running
Running
File size: 173 Bytes
d202ada |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Create a .env if it doesn't exist, log all cases
if [ ! -f .env ]; then
echo "Creating .env file"
touch .env
else
# do nothing and do not log
true
fi
|