]> git.sev.monster Git - dotfiles.git/commitdiff
fix some file redirects
authords6 <git@ds6.pw>
Sun, 25 Feb 2018 12:27:39 +0000 (06:27 -0600)
committersev <git@sev.monster>
Fri, 5 Apr 2024 20:44:51 +0000 (15:44 -0500)
in hindsight .zprofile should probably be put in a cronjob to avoid
affecting things run as the dotfile user before they log in, but doing
that may go outside the scope of install.sh

base/.zprofile
install.sh

index a1292139f1a3089e8089a25e7f14eae10cae1b0f..39abb7d416ffc5e4e6c4da52a06bf6320f9cd497 100644 (file)
@@ -1,5 +1,5 @@
 case "`uname`" in *BSD*)
 case "`uname`" in *BSD*)
-       mkdir -m 700 "/tmp/home-$LOGNAME"
-       unlink "$HOME/tmp"
+       mkdir -m 700 "/tmp/home-$LOGNAME" > /dev/null 2>&1
+       unlink "$HOME/tmp" > /dev/null 2>&1
        ln -sFh "/tmp/home-$LOGNAME" "$HOME/tmp";;
 esac
        ln -sFh "/tmp/home-$LOGNAME" "$HOME/tmp";;
 esac
index 496dfb8440b52afbecba851ffbbe2e3344d3150b..41c019faddb9dbf9c469414010a387abe8d7b5cd 100755 (executable)
@@ -34,8 +34,8 @@ l() {
 # create preferred folder structure
 cd ~
 mkdir -p bin etc share var/run var/log urxvt/ext > /dev/null 2>&1
 # create preferred folder structure
 cd ~
 mkdir -p bin etc share var/run var/log urxvt/ext > /dev/null 2>&1
-mkdir -m 700 var/tmp var/tmp/vim
-[ -n "$bsd" ] && mkdir -m 700 tmp
+mkdir -m 700 var/tmp var/tmp/vim > /dev/null 2>&1
+[ -n "$bsd" ] && mkdir -m 700 tmp > /dev/null 2>&1
 cd -
 
 # link files
 cd -
 
 # link files
This page took 0.035845 seconds and 4 git commands to generate.