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.
24 lines
644 B
24 lines
644 B
#! /bin/bash
|
|
set -e
|
|
|
|
install -d /kaleidoscope/ \
|
|
/kaleidoscope/.arduino/user/hardware/keyboardio \
|
|
/kaleidoscope-persist/temp \
|
|
/kaleidoscope-persist/ccache/cache
|
|
|
|
if [ -z $_NO_SYNC_KALEIDOSCOPE ]; then
|
|
|
|
echo "Syncing Kaleidoscope..."
|
|
tar xf /kaleidoscope-src/kaleidoscope.tar -C /kaleidoscope/
|
|
|
|
ln -s /kaleidoscope /kaleidoscope/.arduino/user/hardware/keyboardio/avr/libraries/Kaleidoscope
|
|
ln -s /kaleidoscope /kaleidoscope/.arduino/user/hardware/keyboardio/gd32/libraries/Kaleidoscope
|
|
|
|
fi
|
|
|
|
cd /kaleidoscope/
|
|
export ARDUINO_DIRECTORIES_DATA=/arduino-cli/data
|
|
export KALEIDOSCOPE_CCACHE=1
|
|
|
|
/bin/bash -c "$*"
|