Skip to content
Snippets Groups Projects

Reorganisation

1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
+ 3
3
@@ -18,12 +18,12 @@
set -o nounset # Treat unset variables as an error
if [ ! -e `pwd`/../main.env ]
if [ ! -e $(pwd)/$(dirname "$0")/../main.env ]
then
echo "Please copy `pwd`/../main.env.sample to `pwd`/../main.env and edit it"
echo "Please copy in racine of NoCloud Auto Installer main.env.sample tomain.env and edit it"
exit 1
fi
. `pwd`/../main.env
. $(pwd)/$(dirname "$0")/../main.env
apt-get clean
Loading