mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-06 05:46:34 +00:00
7 lines
222 B
Plaintext
7 lines
222 B
Plaintext
|
#! /bin/bash
|
||
|
|
||
|
VERSION=3.3.5
|
||
|
FILENAME=Nextcloud-$VERSION.pkg
|
||
|
curl -L -o "$TMP_DIR/$FILENAME" "https://github.com/nextcloud/desktop/releases/download/v${VERSION}/$FILENAME"
|
||
|
sudo installer -pkg "$TMP_DIR/$FILENAME" -target /
|