Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
teamviewer / opt / teamviewer / tv_bin / script / execscript
Size: Mime:
#!/bin/bash

# Wrapper script required for custom polkit pkexec policy
#
# First argument is the path to the script to be executed

SCRIPTPATH=$(readlink -e "$1")

# Change working directory to script directory
cd "$(dirname "$SCRIPTPATH")" || exit 127

exec "$SCRIPTPATH"