diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-02-01 18:43:07 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-02-01 18:43:07 -0200 |
commit | 5822d92a007483705f728b174a8d45cd1b44bb74 (patch) | |
tree | c3f29e5fe428f0c34aa15d1f9b1a0d5f4038e301 | |
parent | 2883ed5425345b16533b9a878ff061f5a51f3507 (diff) | |
download | dotfiles-5822d92a007483705f728b174a8d45cd1b44bb74.tar.gz dotfiles-5822d92a007483705f728b174a8d45cd1b44bb74.tar.bz2 |
Avoid bashism in profile
-rw-r--r-- | modules/profile/profile.dot.link | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.dot.link b/modules/profile/profile.dot.link index f87d864..835a048 100644 --- a/modules/profile/profile.dot.link +++ b/modules/profile/profile.dot.link @@ -41,7 +41,7 @@ if [ -d "$HOME/lost+found" ]; then fi # Make sure basic folder structure exists -mkdir -p $HOME/{apps,file,html,mail,temp} +mkdir -p $HOME/apps $HOME/file $HOME/html $HOME/mail $HOME/temp # Make sure data symlink exists if [ -e "/var/data" ] && [ ! -e "$HOME/data" ]; then |