mirror of
https://github.com/kasmtech/workspaces-core-images.git
synced 2026-07-18 08:56:07 +00:00
8 lines
204 B
Bash
Executable file
8 lines
204 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
if [[ -x /usr/bin/kasm-profile-sync-2 ]]; then
|
|
/usr/bin/kasm-profile-sync-2 --help
|
|
else
|
|
echo "skipping /usr/bin/kasm-profile-sync-2 test as it is not installed"
|
|
fi
|