0b8dd84b18
* Custom actions and yaql expressions Change-Id: I5843135fb8adbeb73d1e205cf81f4c60e8b5b306
13 lines
203 B
Bash
Executable File
13 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -f "/usr/local/bin/cookiecutter" ]
|
|
then
|
|
echo "Installing cookiecutter"
|
|
if [[ $EUID -ne 0 ]]; then
|
|
SUDO=sudo
|
|
fi
|
|
$SUDO pip install cookiecutter
|
|
fi
|
|
|
|
cookiecutter .
|