mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
13 lines
146 B
Bash
13 lines
146 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
if [ -z "$1" ]
|
||
|
|
then
|
||
|
|
echo 'You must specify an environment'
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "$1" > .environment
|
||
|
|
./setup_virtualenv.sh
|