summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Crompton2021-08-01 22:22:56 +0200
committerJames Crompton2021-08-01 22:23:28 +0200
commit8fbafa309cd96fd4e10e311e7d2325b54a3a660b (patch)
tree2f82b61931d44422b15aac95d378c706dd59c5a5
parent4be4f21ea8b286c43a19d4fcaee094531e001df1 (diff)
downloadaur-8fbafa309cd96fd4e10e311e7d2325b54a3a660b.tar.gz
Avoid alarming display of wrong package name while updating other variants
-rw-r--r--updater.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/updater.pl b/updater.pl
index 8d71e5586ece..f00007e81f9e 100644
--- a/updater.pl
+++ b/updater.pl
@@ -12,7 +12,9 @@ GetOptions("installer=s" => \$installer);
chdir("/tmp");
system("wget https://aur.archlinux.org/cgit/aur.git/snapshot/cewe-fotowelt.tar.gz -O cewe-fotowelt.tar.gz");
system("tar -xf cewe-fotowelt.tar.gz");
-chdir("cewe-fotowelt");
+
+system("mv cewe-fotowelt cewe-software");
+chdir("cewe-software");
system("mv '$installer' ./");
$installer =~ s!.*/!!;