shithub: werc

Download patch

ref: 546bdc35ee50201c0180574dee029b9ca1e5e704
parent: 152479e0d9e8246bc97a97b13181a08c6cb7148d
author: Stanley Lieber <sl@stanleylieber.com>
date: Wed Dec 21 16:38:03 EST 2016

bin/aux/* bin/contrib/*: change bang paths to /bin/*: this will later be documented.

--- a/bin/aux/addwuser.rc
+++ b/bin/aux/addwuser.rc
@@ -1,4 +1,4 @@
-#!/usr/bin/env rc
+#!/bin/rc
 
 if(! ~ $#werc_root 0)
     cd $werc_root
--- a/bin/aux/bpst.rc
+++ b/bin/aux/bpst.rc
@@ -1,4 +1,4 @@
-#!/usr/bin/env rc
+#!/bin/rc
 
 path=( $PLAN9/bin  $path )
 base=.
--- a/bin/aux/gensitemaptxt.rc
+++ b/bin/aux/gensitemaptxt.rc
@@ -1,4 +1,4 @@
-#!/usr/bin/env rc
+#!/bin/rc
 # DEPRECATED: sitemap.tpl now generates and updates a sitemap.txt when requested, and is also more smart than this simplistic script.
 
 for(d in sites/*/) {
--- a/bin/aux/runtsts.rc
+++ b/bin/aux/runtsts.rc
@@ -1,4 +1,4 @@
-#!/usr/bin/env rc
+#!/bin/rc
 
 tstdom='http://test.cat-v.org'
 
--- a/bin/contrib/webserver.rc
+++ b/bin/contrib/webserver.rc
@@ -1,4 +1,4 @@
-#!/usr/local/plan9/bin/rc
+#!/bin/rc
 
 # A web server in rc by maht
 # Originally from http://www.proweb.co.uk/~matt/rc/webserver.rc
--