diff --git a/utils/img2js.py b/utils/img2js.py index 058c784..3ba4598 100755 --- a/utils/img2js.py +++ b/utils/img2js.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # # Convert image to Javascript compatible base64 Data URI diff --git a/utils/launch.sh b/utils/launch.sh index c21e2ba..613250c 100755 --- a/utils/launch.sh +++ b/utils/launch.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash usage() { if [ "$*" ]; then diff --git a/utils/web.py b/utils/web.py index 6b7670b..23afca0 100755 --- a/utils/web.py +++ b/utils/web.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python ''' A super simple HTTP/HTTPS webserver for python. Automatically detect diff --git a/utils/websocket.py b/utils/websocket.py index 8fb9e68..9a9d52a 100755 --- a/utils/websocket.py +++ b/utils/websocket.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python ''' Python WebSocket library with support for "wss://" encryption. diff --git a/utils/websockify b/utils/websockify index e9ef5b3..36aba17 100755 --- a/utils/websockify +++ b/utils/websockify @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python ''' A WebSocket to TCP socket proxy with support for "wss://" encryption.