Fix scripts shebangs

This commit is contained in:
Salamandar 2024-02-08 22:34:48 +01:00
parent 6d2984cf2e
commit 9368e485cf
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
workdir=$(dirname "$0") workdir=$(dirname "$0")
log=$workdir/app_list_auto_update.log log=$workdir/app_list_auto_update.log

View file

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
import json import json
import os import os

View file

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
import csv import csv
import json import json

View file

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
import copy import copy
import json import json