7 lines
98 B
Bash
Executable File
7 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
# Do an apt-get update, so that packages can be installed.
|
|
|
|
set -e
|
|
|
|
apt-get -y update
|