We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10e4ff commit 375db0aCopy full SHA for 375db0a
scripts/entrypoint.sh
@@ -91,8 +91,11 @@ fi
91
# Set bell-style none in global inputrc
92
if [ ! -f "airootfs/etc/inputrc" ]; then
93
log "Setting bell-style none in global inputrc..."
94
- if ! mkdir -p "airootfs/etc" 2>/dev/null; then
95
- warn "Failed to create etc directory, continuing..."
+if ! mkdir -p "airootfs/etc" 2>/dev/null; then
+ warn "Failed to create etc directory, continuing..."
96
+else
97
+ echo "set bell-style none" > "airootfs/etc/inputrc"
98
+fi
99
else
100
echo "set bell-style none" > "airootfs/etc/inputrc"
101
fi
0 commit comments