5 lines
73 B
Bash
Executable file
5 lines
73 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ "$1" == "configure" ]]; then
|
|
apt update || true
|
|
fi
|