summaryrefslogtreecommitdiff
path: root/modules/hw-core/bash-lib-git
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2017-10-12 20:00:52 +0200
committerYehonal <yehonal.azeroth@gmail.com>2017-10-12 20:00:52 +0200
commitf06f32849f1e2c72dc73287c73361174c07ed29e (patch)
tree70ace68e849cd5ca446fb36279f8125127bb8693 /modules/hw-core/bash-lib-git
parent4df28fd29c6978e669f9950bd38e853fabf9fc8d (diff)
Directory Structure [step 1]: moving files
working on #672 NOTE: This commit can't be compiled!!
Diffstat (limited to 'modules/hw-core/bash-lib-git')
-rwxr-xr-xmodules/hw-core/bash-lib-git/bin/git-subtree-list7
-rw-r--r--modules/hw-core/bash-lib-git/src/subtree.sh3
2 files changed, 0 insertions, 10 deletions
diff --git a/modules/hw-core/bash-lib-git/bin/git-subtree-list b/modules/hw-core/bash-lib-git/bin/git-subtree-list
deleted file mode 100755
index d3af413e9c..0000000000
--- a/modules/hw-core/bash-lib-git/bin/git-subtree-list
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-CUR_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-
-source $CUR_DIR"/../src/subtree.sh"
-
-hwc_git_subtree_list
diff --git a/modules/hw-core/bash-lib-git/src/subtree.sh b/modules/hw-core/bash-lib-git/src/subtree.sh
deleted file mode 100644
index 08820e6405..0000000000
--- a/modules/hw-core/bash-lib-git/src/subtree.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-function hwc_git_subtree_list() {
- git log | grep git-subtree-dir | tr -d ' ' | cut -d ":" -f2 | sort | uniq
-}