Skip to content

Commit

Permalink
build: fix shebangs
Browse files Browse the repository at this point in the history
- mangling shebang warnings
- ambiguous python shebang error
  • Loading branch information
raveit65 committed Apr 1, 2021
1 parent 8c4d1a8 commit 9a99c3c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion data/pluma-bugreport.sh.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/sh

PKG_CONFIG_MODULES="glib-2.0 gtk+-3.0 gtksourceview-4 enchant iso-codes"

Expand Down
2 changes: 1 addition & 1 deletion plugins/externaltools/data/build.tool.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/sh

EHOME=`echo $HOME | sed "s/#/\#/"`
DIR=$PLUMA_CURRENT_DOCUMENT_DIR
Expand Down
2 changes: 1 addition & 1 deletion plugins/externaltools/data/open-terminal-here.tool.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/sh

#TODO: use "mateconftool-2 -g /desktop/mate/applications/terminal/exec"
mate-terminal --working-directory=$PLUMA_CURRENT_DOCUMENT_DIR &
2 changes: 1 addition & 1 deletion plugins/externaltools/data/remove-trailing-spaces.tool.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
#!/usr/bin/sh

sed 's/[[:blank:]]*$//'
2 changes: 1 addition & 1 deletion plugins/externaltools/data/run-command.tool.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/sh

#TODO: use "gsettings get org.mate.applications-terminal exec"
exec `zenity --entry --title="Run command - Pluma" --text="Command to run"`
2 changes: 1 addition & 1 deletion plugins/externaltools/data/search-recursive.tool.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
# Copyright © 2011 Perberos
#
# This program is free software; you can redistribute it and/or modify it
Expand Down
2 changes: 1 addition & 1 deletion plugins/externaltools/data/switch-c.tool.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Copyright © 2011 Perberos
# Copyright © 2012-2017 MATE developers
Expand Down

0 comments on commit 9a99c3c

Please sign in to comment.