10 lines
126 B
Bash
10 lines
126 B
Bash
#!/bin/bash
|
|
|
|
# Step over prompts from the package-manager.
|
|
if [ -f /etc/arch-release ]; then
|
|
yes ''
|
|
else
|
|
yes
|
|
fi
|
|
|