From: Sebastian Zagrodzki Date: Fri, 14 Apr 2000 11:07:22 +0000 (+0000) Subject: - removed POSIX-uncompatible &> redirection :) X-Git-Tag: setup_2_4_4~98 X-Git-Url: http://git.pld-linux.org/?a=commitdiff_plain;h=b4d858cea81ac23f15abe6895b3c055e4bc89be6;hp=c07dcdcf2355c9db6de0140b0e30ccf4cc71bec2;p=projects%2Fsetup.git - removed POSIX-uncompatible &> redirection :) Changed files: etc/profile.d/tmp-dir.sh -> 1.3 --- diff --git a/etc/profile.d/tmp-dir.sh b/etc/profile.d/tmp-dir.sh index 7a86b53..0f04e83 100644 --- a/etc/profile.d/tmp-dir.sh +++ b/etc/profile.d/tmp-dir.sh @@ -1,4 +1,4 @@ if [ ! -d ~/tmp ]; then - mkdir -p ~/tmp &> /dev/null + mkdir -p ~/tmp > /dev/null 2>&1 chmod -f og-rwx ~/tmp fi