summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanFritz <PanFritz@users.noreply.github.com>2015-11-23 01:55:45 +0100
committerPanFritz <PanFritz@users.noreply.github.com>2015-11-23 01:55:45 +0100
commit9d0e4c99ba84d4efb7828704ed5b0a8e7bdfc52d (patch)
tree02c8e66d3cf3b58163af7147775bdc7426592db7
parente57f721db3a7e4960787099d571c5bc74a92478a (diff)
Removed "ls" in for loop
-rwxr-xr-xsetup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.sh b/setup.sh
index 336376f..74cc599 100755
--- a/setup.sh
+++ b/setup.sh
@@ -91,7 +91,7 @@ echo -e "\n> All plugins downloaded"
cd "redstoner-utils.py.dir"
echo -e "\n> Duplicating sample files"
-for file in ls ./*.example; do
+for file in ./*.example; do
cp -v "$file" "$(echo "$file" | rev | cut -d "." -f 2- | rev)"
done