Skip to content

Commit

Permalink
fixing bug with make command
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjohnwright committed Jul 15, 2020
1 parent 596406d commit 0f3c6a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ build: docker/${DEPLOY_JAR} \
--rm ./docker/

.PHONY: build-latest
build-staging: docker/${DEPLOY_JAR} \
build-latest: docker/${DEPLOY_JAR} \
$(call print-help,build,\
"Build the docker images from using the current git revision.")
docker build -t ${NAME}:latest \
Expand Down
16 changes: 8 additions & 8 deletions src/rest_api/db/sequence.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
[rest-api.db.sequencesql :as sequencesql]))

(defn database-version []
(first
(str/split
(second
(reverse
(str/split
(db/datomic-uri)
#"/")))
#"\.")))
(subs
(second
(reverse
(str/split
(db/datomic-uri)
#"/")))
0 5))


(def species-assemblies
(->> "ASSEMBLIES.json"
Expand Down

0 comments on commit 0f3c6a1

Please sign in to comment.