Fix scripts shebangs

This commit is contained in:
Félix Piédallu 2024-02-08 22:34:48 +01:00
parent 7f3f628b5d
commit 5e692f37d7
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