Skip to content

Commit

Permalink
fixed utils path
Browse files Browse the repository at this point in the history
  • Loading branch information
dinkypumpkin committed Jun 29, 2020
1 parent aeadcdf commit 0470db0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -584,13 +584,15 @@ endif

commit:
ifndef WIP
ifneq ($(pkg_ver), $(curr_version))
@/usr/libexec/PlistBuddy -c "Set :PACKAGES:0:PACKAGE_SETTINGS:VERSION $(pkg_ver)" $(pkg_src)
@git commit -m $(pkg_ver) $(pkg_src)
endif
@git tag $(pkg_ver)
@git checkout contribute
@git merge master
@/usr/libexec/PlistBuddy -c "Set :PACKAGES:0:PACKAGE_SETTINGS:VERSION $(next_version)" $(pkg_src)
@git commit -m "bump dev version" $(pkg_src)
@git commit -m $(next_version) $(pkg_src)
@git checkout master
@echo tagged $(pkg_ver)
endif
Expand Down
2 changes: 1 addition & 1 deletion get_iplayer
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
GIPDIR=/usr/local/get_iplayer
GIPCLI=$GIPDIR/perl/bin/get_iplayer
export PATH="$GIPDIR/bin${PATH:+:${PATH}}"
export PATH="$GIPDIR/utils/bin${PATH:+:${PATH}}"
exec $GIPCLI "$@"
2 changes: 1 addition & 1 deletion get_iplayer_cgi
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
GIPDIR=/usr/local/get_iplayer
GIPCLI=$GIPDIR/perl/bin/get_iplayer
GIPWPM=$GIPDIR/perl/bin/get_iplayer.cgi
export PATH="$GIPDIR/bin${PATH:+:${PATH}}"
export PATH="$GIPDIR/utils/bin${PATH:+:${PATH}}"
exec $GIPWPM --getiplayer $GIPCLI --listen 127.0.0.1 --port 1935 "$@"
2 changes: 1 addition & 1 deletion get_iplayer_pvr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
GIPDIR=/usr/local/get_iplayer
GIPCLI=$GIPDIR/perl/bin/get_iplayer
export PATH="$GIPDIR/bin${PATH:+:${PATH}}"
export PATH="$GIPDIR/utils/bin${PATH:+:${PATH}}"
exec $GIPCLI --pvr-scheduler 14400 "$@"

0 comments on commit 0470db0

Please sign in to comment.