mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-13 12:22:20 +00:00
8 lines
256 B
Bash
Executable File
8 lines
256 B
Bash
Executable File
#!/bin/bash
|
|
FILE="plugins.json"
|
|
URL="https://macpassapp.org/data/${FILE}"
|
|
MY_FOLDER="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
DOWNLOAD_FOLDER="${MY_FOLDER}/../MacPass/Resources/"
|
|
cd "${DOWNLOAD_FOLDER}"
|
|
wget -O "${FILE}" "${URL}"
|