Warning, /sdk/kommit/snap/local/launchers/snap_connect_advise is written in an unsupported language. File is not indexed.
0001 0002 #!/usr/bin/env bash 0003 # This is the maintainence launcher for the snap, make necessary runtime 0004 # environment changes to make the snap work here. You may also insert 0005 # security confinement/deprecation/obsoletion notice of the snap here. 0006 # 0007 # Copyright 2019 ๆๅไป(Buo-ren, Lin) <Buo.Ren.Lin@gmail.com> 0008 # SPDX-License-Identifier: MIT 0009 0010 set \ 0011 -o errexit \ 0012 -o errtrace \ 0013 -o nounset \ 0014 -o pipefail 0015 0016 #export IMPORTANT_ENVIRONMENT_VARIABLE=value 0017 kdialog --msgbox "ATTENTION\n sudo snap connect kommit:gpg-keys :gpg-keys \n \ 0018 sudo snap connect kommit:ssh-keys :ssh-keys \n \ 0019 if you wish to use your pre-existing keys" 0020 # Finally run the next part of the command chain 0021 exec "${@}"