You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/ci/build_release.sh

14 lines
253 B
Bash

#!/bin/bash
cd ../
mkdir release
TARGETDIR=release;for file in *;do test "$file" != "$TARGETDIR" && cp -r "$file" "$TARGETDIR/";done
# Remove files that we don't want to bundle
cd release
rm -rf ci
rm -rf .git
rm apidoc.json
rm CONTRIBUTING.md
cd ../