mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-23 11:30:14 +10:00
14 lines
141 B
Bash
Executable File
14 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
CALLER_DIR=$( pwd )
|
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
|
|
sg lxd -c 'snapcraft --use-lxd'
|
|
|
|
ls -la
|
|
|
|
cd "${CALLER_DIR}"
|