From: Igor Kulaychuk Date: Mon, 13 Nov 2017 19:30:33 +0000 (+0300) Subject: Disable downloading sources from internal repo X-Git-Tag: submit/tizen/20180620.071641~85 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=528d66cd553c45d4fb8b3d583df3b71dbb1b27fe;p=sdk%2Ftools%2Fnetcoredbg.git Disable downloading sources from internal repo --- diff --git a/README.md b/README.md index 17b5328..73d23d6 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,8 @@ The debugger sources are located in https://github.sec.samsung.net/i-kulaychuk/c 3. Build the `netcoredbg` package - Clone the repo, run `init.sh` script to download debugger sources and build as usual: + Clone the repo and build as usual: ``` - ./init.sh gbs build -A armv7l --include-all --spec netcoredbg.spec ``` diff --git a/init.sh b/init.sh deleted file mode 100755 index b06679c..0000000 --- a/init.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh - -BASEDIR=$(dirname "$0") - -FILES=" - breakpoints.cpp - breakpoints.h - commands.cpp - common.h - cputil.h - debugger.h - expr.cpp - expr.h - frames.cpp - frames.h - jmc.cpp - main.cpp - modules.cpp - modules.h - platform.cpp - platform.h - symbolreader.cpp - symbolreader.h - torelease.h - typeprinter.cpp - typeprinter.h - valueprint.cpp - valueprint.h - valuewalk.cpp - valuewalk.h - varobj.cpp - varobj.h -" - -OWNER=i-kulaychuk -REPO=coreclr -TOKEN=9b20b7ffeff3e85174696955d272f2e1bc37678c -REF=debugger - -for f in $FILES; do - LOCATION=src/debug/netcoredbg/$f - echo "Fetching $LOCATION" - curl \ - --header "Authorization: token $TOKEN" \ - --header "Accept: application/vnd.github.v3.raw" \ - -o $BASEDIR/$LOCATION \ - https://github.sec.samsung.net/api/v3/repos/$OWNER/$REPO/contents/$LOCATION?ref=$REF -done - -LOCATION=src/ToolBox/SOS/NETCore/SymbolReader.cs -echo "Fetching $LOCATION" -curl \ - --header "Authorization: token $TOKEN" \ - --header "Accept: application/vnd.github.v3.raw" \ - -o $BASEDIR/src/debug/netcoredbg/SymbolReader.cs \ - https://github.sec.samsung.net/api/v3/repos/$OWNER/$REPO/contents/$LOCATION?ref=$REF