mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 07:04:08 +00:00
47 lines
1.6 KiB
Bash
Executable file
47 lines
1.6 KiB
Bash
Executable file
#! /bin/bash
|
|
|
|
# This script is Benjamín C. Calderón's brain child (@benjcal).
|
|
# Written by Bo and a "good enough for now" draft.
|
|
#
|
|
# This script isn't safe to update between releases. The new_post_download script should be edited instead.
|
|
|
|
if [ -z $1 ]
|
|
then
|
|
echo "Please name the application (the folder to create):"
|
|
read FIO_APPNAME
|
|
else
|
|
FIO_APPNAME=$1
|
|
fi
|
|
|
|
if [ -a $FIO_APPNAME ]; then echo "Couldn't create folder, already exists?"; exit 1; fi
|
|
if [ -d $FIO_APPNAME ]; then echo "Couldn't create folder, already exists?"; exit 1; fi
|
|
|
|
if [[ ! -z "${FIO_BRANCH}" ]]; then
|
|
FIO_URL=https://github.com/boazsegev/facil.io/archive/${FIO_BRANCH}.tar.gz
|
|
elif [[ ! -z "${FIO_RELEASE}" ]]; then
|
|
FIO_URL=$(curl -s https://api.github.com/repos/boazsegev/facil.io/releases/tags/${FIO_RELEASE} | grep tarball_url | cut -d '"' -f 4)
|
|
else
|
|
FIO_URL=$(curl -s https://api.github.com/repos/boazsegev/facil.io/releases/latest | grep tarball_url | cut -d '"' -f 4)
|
|
fi
|
|
|
|
if [[ -z "${FIO_URL}" ]]; then echo "URL error, FIO_BRANCH or FIO_RELEASE don't exist?"; exit 1; fi
|
|
|
|
echo "* Creating $FIO_APPNAME"
|
|
mkdir $FIO_APPNAME
|
|
cd $FIO_APPNAME
|
|
|
|
echo "* Downloading from $FIO_URL"
|
|
|
|
# Was: curl -s -LJO https://github.com/boazsegev/facil.io/archive/stable.tar.gz
|
|
# But it's better to use releases than the stable branch:
|
|
curl -s -o facil.io.tar.gz -LJO $FIO_URL
|
|
|
|
if [ $? -ne 0 ]; then echo "Couldn't download the latest release from facil.io's GitHub repo."; exit 1; fi
|
|
|
|
tar --strip-components=1 -xzf facil.io.tar.gz
|
|
if [ $? -ne 0 ]; then echo "Couldn't extract tar."; exit 1; fi
|
|
|
|
rm facil.io.tar.gz
|
|
|
|
echo "* Cleaning up and placing example code."
|
|
./scripts/new/cleanup
|