summarylogtreecommitdiffstats
path: root/start.sh
blob: 088cb0afa00b330925aae0abdb472130401b5c70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

export _portableConfig="com.tencent.wemeet"

if [[ "$@" = "--actions opendir" ]]; then
	portable --actions opendir
elif [[ "$@" = "--actions share-files" ]]; then
	portable --actions share-files
elif [[ "$@" = "--actions quit" ]]; then
	portable --actions quit
else
	portable -- $@
fi