mirror of
https://github.com/linuxserver/docker-github-desktop.git
synced 2026-01-24 00:22:35 +08:00
11 lines
195 B
Bash
Executable File
11 lines
195 B
Bash
Executable File
#! /bin/bash
|
|
|
|
BIN=/usr/bin/chromium-real
|
|
|
|
# Cleanup
|
|
if ! pgrep chromium > /dev/null;then
|
|
rm -f $HOME/.config/chromium/Singleton*
|
|
fi
|
|
|
|
${BIN} --password-store=basic --no-sandbox --test-type "$@"
|