From 58252950a7ae7de90b508995e4d00224c0820526 Mon Sep 17 00:00:00 2001 From: mordax Date: Sat, 13 Oct 2018 21:31:39 -0400 Subject: [PATCH 1/2] Removing mention of submodules from docs/build --- appveyor.yml | 1 - docs/installing-solidity.rst | 6 ------ 2 files changed, 7 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 81ec711db..91ea8af77 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -55,7 +55,6 @@ install: $fileContent += "`n-----END RSA PRIVATE KEY-----`n"; Set-Content c:\users\appveyor\.ssh\id_rsa $fileContent } - - git submodule update --init --recursive - ps: $prerelease = "nightly." - ps: $prerelease += Get-Date -format "yyyy.M.d" - ps: if($env:appveyor_repo_branch -eq 'release') { Set-Content prerelease.txt $null } else { Set-Content prerelease.txt $prerelease } diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst index 9d4be70d5..f8de0e8d9 100644 --- a/docs/installing-solidity.rst +++ b/docs/installing-solidity.rst @@ -245,12 +245,6 @@ you should fork Solidity and add your personal fork as a second remote: git remote add personal git@github.com:[username]/solidity.git -Solidity has git submodules. Ensure they are properly loaded: - -.. code-block:: bash - - git submodule update --init --recursive - External Dependencies --------------------- From 40b9b52872d330096fdde240e81bcc455e575616 Mon Sep 17 00:00:00 2001 From: mordax Date: Sat, 13 Oct 2018 21:35:09 -0400 Subject: [PATCH 2/2] Remove another mention --- scripts/create_source_tarball.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/create_source_tarball.sh b/scripts/create_source_tarball.sh index 4e9307075..632c1daaf 100755 --- a/scripts/create_source_tarball.sh +++ b/scripts/create_source_tarball.sh @@ -23,7 +23,6 @@ REPO_ROOT="$(dirname "$0")"/.. mkdir "$SOLDIR" # Store the current source git checkout-index -a --prefix="$SOLDIR" - git submodule foreach 'git checkout-index -a --prefix="'"$SOLDIR"'/$path/"' # Store the commit hash echo "$commithash" > "$SOLDIR/commit_hash.txt" if [ -e prerelease.txt -a ! -s prerelease.txt ]