You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
695 B
21 lines
695 B
4 years ago
|
#! /bin/bash
|
||
|
set -e
|
||
|
|
||
|
install -d /kaleidoscope/hardware/keyboardio \
|
||
|
/kaleidoscope/hardware/keyboardio/avr/libraries/Kaleidoscope \
|
||
|
/kaleidoscope-persist/temp \
|
||
|
/kaleidoscope-persist/ccache/cache
|
||
|
|
||
|
echo "Syncing the bundle..."
|
||
|
tar xf /kaleidoscope-src/bundle.tar -C /kaleidoscope/hardware/keyboardio
|
||
|
|
||
|
echo "Syncing Kaleidoscope..."
|
||
|
tar xf /kaleidoscope-src/kaleidoscope.tar -C /kaleidoscope/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||
|
|
||
|
ln -s /kaleidoscope/hardware/keyboardio/virtual/libraries/Kaleidoscope \
|
||
|
/kaleidoscope/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||
|
|
||
|
cd /kaleidoscope/hardware/keyboardio/avr/libraries/Kaleidoscope
|
||
|
|
||
|
/bin/bash -c "$*"
|