We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06ea8a5 commit 44ecd4fCopy full SHA for 44ecd4f
3 files changed
pkgadd
@@ -155,7 +155,7 @@ fi
155
msgerr "remove '$LOCK_FILE' if no install/remove package process running."
156
}
157
158
-touch "$LOCK_FILE" || {
+touch "$LOCK_FILE" 2>/dev/null || {
159
msgerr "Cant create lock file in '$LOCK_FILE'."
160
exit 1
161
pkgbuild
@@ -629,7 +629,7 @@ main() {
629
630
631
# create lock file
632
- touch "$LOCK_FILE" || {
+ touch "$LOCK_FILE" 2>/dev/null || {
633
634
635
pkgdel
@@ -137,7 +137,7 @@ fi
137
138
139
140
141
msgerr "Cant create lock file in '$LOCK_FILE'"
142
143
0 commit comments