mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
We've moved the install script to photon-image-modifier. This updates the install script in photonvision to just download and run the install.sh from photon-image-modifier.
8 lines
333 B
Bash
Executable File
8 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
# The install script is now in photon-image-modifier
|
|
# this downloads and runs that install script for people using the old short URL
|
|
wget -q https://raw.githubusercontent.com/PhotonVision/photon-image-modifier/master/install.sh -O ./real_install.sh
|
|
chmod +x ./real_install.sh
|
|
./real_install.sh "$@"
|
|
rm ./real_install.sh
|