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