mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-06 03:36:31 +00:00
7 lines
222 B
Bash
Executable File
7 lines
222 B
Bash
Executable File
#! /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 /
|