1
0
mirror of https://bitbucket.org/shim_/docker-rtm.git synced 2018-10-04 01:52:08 +02:00

df -l -> df

This commit is contained in:
shim_ 2016-06-13 16:36:11 +02:00
parent 664836d680
commit 439764c6d1

View File

@ -15,6 +15,8 @@ function fetch_installer {
curl "$RTM_DOWNLOAD_URL$RTM_VERSION.sh" > $INSTALLER curl "$RTM_DOWNLOAD_URL$RTM_VERSION.sh" > $INSTALLER
CHECKSUM=$(sha256sum $INSTALLER) CHECKSUM=$(sha256sum $INSTALLER)
if [ "$CHECKSUM" == "$RTM_INSTALLER_CHECKSUM $INSTALLER" ]; then if [ "$CHECKSUM" == "$RTM_INSTALLER_CHECKSUM $INSTALLER" ]; then
sed -i 's/df -li/df -i/g' $INSTALLER
sed -i 's/df -l/df/g' $INSTALLER
chmod +x $INSTALLER chmod +x $INSTALLER
$INSTALLER $INSTALLER
else else