mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 16:41:44 +01:00 
			
		
		
		
	Using the method from @cemeyer (https://github.com/espressif/esp-idf/pull/3166): find . -name \*.sh -exec sed -i "" -e 's|^#!.*bin/bash|#!/usr/bin/env bash|' {} + Closes https://github.com/espressif/esp-idf/pull/3166.
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
#
 | 
						|
# Explicitly switches the relative submodules locations on GitHub to the original public URLs
 | 
						|
#
 | 
						|
#       '../../group/repo.git' to 'https://github.com/group/repo.git'
 | 
						|
#
 | 
						|
# This can be useful for non-GitHub forks to automate getting of right submodules sources.
 | 
						|
#
 | 
						|
 | 
						|
#
 | 
						|
# It makes sense to do
 | 
						|
#
 | 
						|
#       git submodule deinit --force .
 | 
						|
#       git submodule init
 | 
						|
#
 | 
						|
# before running this, and
 | 
						|
#
 | 
						|
#       git submodule update --recursive
 | 
						|
#
 | 
						|
# after that. These were not included over this script deliberately, to use the script flexibly
 | 
						|
#
 | 
						|
 | 
						|
set -o errexit
 | 
						|
set -o pipefail
 | 
						|
set -o nounset
 | 
						|
 | 
						|
DEBUG_SHELL=${DEBUG_SHELL:-"0"}
 | 
						|
[ "${DEBUG_SHELL}" = "1" ] && set -x
 | 
						|
 | 
						|
### '../../' relative locations
 | 
						|
 | 
						|
for LINE in $(git config -f .gitmodules --list | grep "\.url=../../[^.]")
 | 
						|
do
 | 
						|
    SUBPATH=$(echo "${LINE}" | sed "s|^submodule\.\([^.]*\)\.url.*$|\1|")
 | 
						|
    LOCATION=$(echo "${LINE}" | sed 's|.*\.url=\.\./\.\./\(.*\)$|\1|')
 | 
						|
    SUBURL="https://github.com/$LOCATION"
 | 
						|
 | 
						|
    git config submodule."${SUBPATH}".url "${SUBURL}"
 | 
						|
done
 | 
						|
 | 
						|
git config --get-regexp '^submodule\..*\.url$'
 |