6 lines
73 B
Text
6 lines
73 B
Text
|
#!/bin/bash
|
||
|
|
||
|
if [[ "$1" == "configure" ]]; then
|
||
|
apt update || true
|
||
|
fi
|