mirror of
https://github.com/Retropex/MDG-mynode.git
synced 2025-05-12 19:30:42 +02:00
17 lines
497 B
Bash
17 lines
497 B
Bash
#!/bin/bash
|
|
|
|
source /usr/share/mynode/mynode_device_info.sh
|
|
source /usr/share/mynode/mynode_app_versions.sh
|
|
|
|
set -x
|
|
set -e
|
|
|
|
echo "==================== INSTALLING APP ===================="
|
|
|
|
# The current directory is the app install folder and the app tarball from GitHub
|
|
# has already been downloaded and extracted. Any additional env variables specified
|
|
# in the JSON file are also present.
|
|
|
|
# TODO: Perform installation steps here
|
|
|
|
echo "================== DONE INSTALLING APP =================" |