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