Build: speed up atom ls build for debugging

This commit is contained in:
BoykoAlex
2017-08-04 16:35:58 -04:00
parent 4b959a7ab7
commit 51dd0a621a
2 changed files with 3 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ else
fi
cd ${sources}
./mvnw package -DargLine="-Dlsp.lazy.completions.disable=true -Dlsp.completions.indentation.enable=true -Dlsp.yaml.completions.errors.disable=true"
./mvnw package -DskipTests -DargLine="-Dlsp.lazy.completions.disable=true -Dlsp.completions.indentation.enable=true -Dlsp.yaml.completions.errors.disable=true"
timestamp=`date -u +%Y%m%d%H%M`
for i in `ls *-language-server/target/*.jar`; do

View File

@@ -2,6 +2,7 @@
set -e
set -v
workdir=`pwd`
output=$workdir/out
url=`cat fatjar/url`
@@ -27,19 +28,13 @@ node ./node_modules/bundle-deps/bundle-deps .
basename=$(npm pack | tee /dev/tty)
echo ${basename}
ls *.tgz
timestamp=`date -u +%Y%m%d%H%M`
length=${#basename}
newName=${basename:0:${length}-4}-$timestamp${basename:${length}-4:${length}}
echo ${newName}
cp ${basename} ${newName}
cp ${basename} ${output}/${newName}
cp ${basename} $output/${newName}
cd $output
ls -la