summarylogtreecommitdiffstats
path: root/meteor.sh
diff options
context:
space:
mode:
authorJean Lucas2018-08-16 23:10:03 -0400
committerJean Lucas2018-08-16 23:10:35 -0400
commita52ca80bb615bb8350a54230dd04da2e713686fd (patch)
tree395ebae830a35954d2d631e435f8bc198d3905ee /meteor.sh
parent4e2619004692eb2da1bc0ea8f2a971b585b864a9 (diff)
downloadaur-a52ca80bb615bb8350a54230dd04da2e713686fd.tar.gz
Version bump to 1.7.0.4, tidy up code
- Remove nonexistent conflicts - Quote pkgdir - Remove install file from source - Use more succinct commands and quoting
Diffstat (limited to 'meteor.sh')
-rw-r--r--meteor.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/meteor.sh b/meteor.sh
index 0e4ffb2c2e61..83d01dc8b609 100644
--- a/meteor.sh
+++ b/meteor.sh
@@ -1,8 +1,8 @@
#!/bin/bash
-if [ ! -d "$HOME/.meteor" ]; then
- install -d "$HOME/.meteor"
- cp -r /usr/share/meteor/* "$HOME/.meteor/"
+if [ ! -d "$HOME"/.meteor ]; then
+ mkdir "$HOME"/.meteor
+ cp -r /usr/share/meteor/* "$HOME"/.meteor
fi
-"$HOME/.meteor/meteor" "$@"
+"$HOME"/.meteor/meteor "$@"