summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-11-05 06:19:55 -0500
committerPliable Pixels <pliablepixels@gmail.com>2017-11-05 06:19:55 -0500
commit25eaa513966dc6dc5073ae31f0f880a0717e01ee (patch)
tree56f0220647510ae8ec3edbca1508a7de12e2d694
parent34fde012cef47592d09eabc9a9477c4a00bcf3c9 (diff)
removed
-rwxr-xr-xupdate.sh5
-rwxr-xr-xupdate_plugins.sh7
2 files changed, 0 insertions, 12 deletions
diff --git a/update.sh b/update.sh
deleted file mode 100755
index 6de1e8eb..00000000
--- a/update.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-plugins=`cordova plugin list | awk '{print $1}' | grep -v {}`
-for plugin in $plugins
-do
- echo "Here $plugin"
-done
diff --git a/update_plugins.sh b/update_plugins.sh
deleted file mode 100755
index 3b4c7d36..00000000
--- a/update_plugins.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-cordova plugins | grep -Eo '^[^ ]+' | while read line
-do
- echo "cordova plugin remove $line"
- cordova plugin remove $line
- echo "cordova plugin add $line"
- cordova plugin add $line
-done