mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-23 17:17:46 +01:00
jsminify's basedir should be configurable
This commit is contained in:
parent
64be247565
commit
8302892bfb
@ -1,12 +1,18 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
echo "This shell will minify the Javascript in Harbor project."
|
echo "This shell will minify the Javascript in Harbor project."
|
||||||
echo "Usage: #jsminify [src] [dest]"
|
echo "Usage: #jsminify [src] [dest] [basedir]"
|
||||||
|
|
||||||
#prepare workspace
|
#prepare workspace
|
||||||
rm -rf $2 /tmp/harbor.app.temp.js
|
rm -rf $2 /tmp/harbor.app.temp.js
|
||||||
|
|
||||||
BASEPATH=/go/bin
|
if [ -z $3 ]
|
||||||
|
then
|
||||||
|
BASEPATH=/go/bin
|
||||||
|
else
|
||||||
|
BASEPATH=$3
|
||||||
|
fi
|
||||||
|
|
||||||
#concat the js files from js include file
|
#concat the js files from js include file
|
||||||
echo "Concat js files..."
|
echo "Concat js files..."
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user