12 lines
		
	
	
		
			290 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			290 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
. /usr/local/share/portshaker/portshaker.subr
 | 
						|
if [ "$1" != '--' ]; then
 | 
						|
  err 1 "Extra arguments"
 | 
						|
fi
 | 
						|
shift
 | 
						|
method="git"
 | 
						|
git_clone_uri="https://code.fizz.buzz/mirror/freebsd-ports.git"
 | 
						|
# git_clone_uri="https://git.FreeBSD.org/ports.git"
 | 
						|
git_branch="main"
 | 
						|
run_portshaker_command $*
 |