aboutsummaryrefslogtreecommitdiff
path: root/sourcesFromSbt.sh
diff options
context:
space:
mode:
authorJim Lawson2016-04-07 13:48:33 -0700
committerjackkoenig2016-04-09 19:07:47 -0700
commita74bbef25f8aa4d6b43be23b3831655efad1711c (patch)
treea3cd9dd97bd2bde0017c84839a95af6e7568f03f /sourcesFromSbt.sh
parent084e7ca9f9ecb76b91e143931d08195d45672ab7 (diff)
Use find instead of sbt to determine (potential) sources.
Diffstat (limited to 'sourcesFromSbt.sh')
-rwxr-xr-xsourcesFromSbt.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/sourcesFromSbt.sh b/sourcesFromSbt.sh
deleted file mode 100755
index e2b6a170..00000000
--- a/sourcesFromSbt.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-# Parse the output of:
-# sbt "show compile:sources compile:resources".
-#
-# Set the field delimiter to any of '(', ',', or ')'
-# and split lines beginning with:
-# [info] ArrayBuffer(
-# [info] List(
-# throwing away the initial 'field' up to and including the '('.
-gawk -F '\\(|,|\\)' '/\[info\]\s+((ArrayBuffer)|(List))\(/ { $1 = ""; print $0 }'