mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 23:37:47 +00:00
22 lines
453 B
Bash
Executable file
22 lines
453 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Sets up a packaging environment in [/tmp]
|
|
|
|
# Make sure we're in the [gupaxx/utils] directory
|
|
set -ex
|
|
[[ $PWD = */gupaxx ]]
|
|
|
|
# Make sure the folder doesn't already exist
|
|
GIT_COMMIT=$(cat .git/refs/heads/main)
|
|
FOLDER="gupaxx_${GIT_COMMIT}"
|
|
[[ ! -e /tmp/${FOLDER} ]]
|
|
|
|
mkdir /tmp/${FOLDER}
|
|
cp -r utils/* /tmp/${FOLDER}/
|
|
cp CHANGELOG.md /tmp/${FOLDER}/skel/
|
|
|
|
set +ex
|
|
|
|
echo
|
|
ls --color=always /tmp/${FOLDER}
|
|
echo "/tmp/${FOLDER} ... OK"
|