summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/perl
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2022-06-01 14:15:16 +0200
committergjoranv <gv@verizonmedia.com>2022-06-08 11:45:23 +0200
commit7046fa410c21a79aff874e545dc7d1cc0d66bef1 (patch)
treef45d4ea2bd3e58714540c96a3e98ed1262dc4e26 /config-model/src/main/perl
parent43ee6cdb08ebf33787eeb0d977f52a33531eb735 (diff)
Don't put application into application/ when deploying with vespa-deploy
Diffstat (limited to 'config-model/src/main/perl')
-rwxr-xr-xconfig-model/src/main/perl/vespa-deploy2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/main/perl/vespa-deploy b/config-model/src/main/perl/vespa-deploy
index 02a6737185d..dde074b5e8c 100755
--- a/config-model/src/main/perl/vespa-deploy
+++ b/config-model/src/main/perl/vespa-deploy
@@ -445,7 +445,7 @@ sub http_upload_lowlevel {
$url = add_url_property_from_option($url, $opt_F, "from");
`$CURL_POST $url`;
} else {
- my $TAR="tar -C $app --dereference --exclude='.[a-zA-Z0-9]*' --exclude=ext -cf - . --transform=\"s#^#application/#\" ";
+ my $TAR="tar -C $app --dereference --exclude='.[a-zA-Z0-9]*' --exclude=ext -cf - .";
print "Uploading application '$app' using $url\n";
if (-f $app) {
`cat $app | $CURL_POST_ZIP $url`;