From 3c899178b4aa6c331910932aae87f24c62d1b3ba Mon Sep 17 00:00:00 2001 From: myvesta <38690722+myvesta@users.noreply.github.com> Date: Sun, 30 Aug 2020 05:08:31 +0200 Subject: [PATCH] Update and rename v-file-replace to v-file-replace-string --- bin/{v-file-replace => v-file-replace-string} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename bin/{v-file-replace => v-file-replace-string} (85%) diff --git a/bin/v-file-replace b/bin/v-file-replace-string similarity index 85% rename from bin/v-file-replace rename to bin/v-file-replace-string index caf2189b..271cc50c 100644 --- a/bin/v-file-replace +++ b/bin/v-file-replace-string @@ -10,7 +10,7 @@ echo "Find: ".$find."\n"; echo "Replace: ".$replace."\n"; echo "File: ".$file."\n"; -$r=myvesta_replace_in_file($file, $find, $replace); +$r=myvesta_replace_in_file($find, $replace, $file); if ($r) echo "Replacing done!\n";