Prepare, configure, and manage Firecracker microVMs in seconds!
virtualization linux microvm firecracker
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix install script

+3 -1
+3 -1
install.sh
··· 106 106 107 107 detect_os 108 108 109 + RELEASE_URL="https://api.github.com/repos/tsirysndr/fireup/releases/latest" 110 + 109 111 DOWNLOAD_URL=$(curl -sSL "$RELEASE_URL" | grep -o "browser_download_url.*fireup-.*$ASSET_NAME\"" | cut -d ' ' -f 2) 110 112 111 113 DOWNLOAD_URL=`echo $DOWNLOAD_URL | tr -d '\"'` ··· 114 116 115 117 curl -SL $DOWNLOAD_URL -o /tmp/$ASSET_NAME 116 118 117 - tar -xzf /tmp/$ASSET_NAME -C /tmp 119 + tar -xvf /tmp/$ASSET_NAME -C /tmp 118 120 119 121 chmod a+x /tmp/fireup 120 122