Skip to content

Commit

Permalink
fix: use direct path to python3 to avoid problems when default python…
Browse files Browse the repository at this point in the history
…3 is not cpython

fixes #215
  • Loading branch information
caio96 authored and actionless committed Jul 5, 2018
1 parent 72e5aa9 commit 4e7a254
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packaging/usr/bin/pikaur
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/python3
# -*- coding: utf-8 -*-

from pikaur.main import main
Expand Down
2 changes: 1 addition & 1 deletion pikaur.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/python3
# -*- coding: utf-8 -*-

from pikaur.main import main
Expand Down
2 changes: 1 addition & 1 deletion pikaur/main.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/python3
# -*- coding: utf-8 -*-

import os
Expand Down

0 comments on commit 4e7a254

Please sign in to comment.