Skip to content

Commit

Permalink
Removed symlinks in favor of explicit sourcing of linked files.
Browse files Browse the repository at this point in the history
This is more cross-platform compatible for a git repo (i.e. on windows).
  • Loading branch information
klueska committed Jul 12, 2017
1 parent 810ef3e commit 2f5a3a1
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
1 change: 0 additions & 1 deletion cli/bin/clean.sh

This file was deleted.

5 changes: 5 additions & 0 deletions cli/bin/clean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

CURRDIR=$(dirname "${0}")
source ${CURRDIR}/common.sh
source ${BUILDDIR}/../bin/clean.sh
1 change: 0 additions & 1 deletion cli/bin/distclean.sh

This file was deleted.

5 changes: 5 additions & 0 deletions cli/bin/distclean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

CURRDIR=$(dirname "${0}")
source ${CURRDIR}/common.sh
source ${BUILDDIR}/../bin/distclean.sh
1 change: 0 additions & 1 deletion cli/bin/env.sh

This file was deleted.

5 changes: 5 additions & 0 deletions cli/bin/env.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

CURRDIR=$(dirname "${0}")
source ${CURRDIR}/common.sh
source ${BUILDDIR}/../bin/env.sh
1 change: 0 additions & 1 deletion cli/bin/packages.sh

This file was deleted.

5 changes: 5 additions & 0 deletions cli/bin/packages.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

CURRDIR=$(dirname "${0}")
source ${CURRDIR}/common.sh
source ${BUILDDIR}/../bin/packages.sh
1 change: 0 additions & 1 deletion cli/bin/test.sh

This file was deleted.

5 changes: 5 additions & 0 deletions cli/bin/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

CURRDIR=$(dirname "${0}")
source ${CURRDIR}/common.sh
source ${BUILDDIR}/../bin/test.sh

0 comments on commit 2f5a3a1

Please sign in to comment.