diff options
author | Sven Gothel <sgothel@jausoft.com> | 2010-04-28 05:55:38 +0200 |
---|---|---|
committer | Sven Gothel <sgothel@jausoft.com> | 2010-04-28 05:55:38 +0200 |
commit | e5720ee629fba06bc266265b42eb559150f7d7a3 (patch) | |
tree | 767e3da76d48ed46879c1b78a186d1b5d44ca2e2 /make/scripts/deploy-jnlp-webstarttest-filter.sh | |
parent | a08c3c054a6b9cfe892d2516c66362083dc72290 (diff) |
Integrate deployment scripts. jar: copy-repack200-sign-pack200. jnlp: copy-filter
Diffstat (limited to 'make/scripts/deploy-jnlp-webstarttest-filter.sh')
-rwxr-xr-x | make/scripts/deploy-jnlp-webstarttest-filter.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/make/scripts/deploy-jnlp-webstarttest-filter.sh b/make/scripts/deploy-jnlp-webstarttest-filter.sh index e95be29cb..58191bcb7 100755 --- a/make/scripts/deploy-jnlp-webstarttest-filter.sh +++ b/make/scripts/deploy-jnlp-webstarttest-filter.sh @@ -15,11 +15,11 @@ fi cd $wsdir -rm -rf orig -mkdir orig +rm -rf orig-jnlp +mkdir orig-jnlp for i in *.jnlp ; do - mv $i orig + mv $i orig-jnlp sed -e 's/<security>//g' -e 's/<\/security>//g' -e 's/<all-permissions\/>//g' orig/$i > $i done |