Skip to content

Commit

Permalink
tmx rename
Browse files Browse the repository at this point in the history
  • Loading branch information
ronen committed Sep 29, 2019
1 parent 0a94e06 commit 05cda8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject tmuxificator "0.1.0"
(defproject tmx "0.1.0"
:description "Tmux session management tool"
:url "https://github.com/narkisr/tmuxificator"
:license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"}
Expand Down Expand Up @@ -30,7 +30,7 @@
:dev {
:set-version {
:updates [
{:path "src/tmuxificator/core.clj" :search-regex #"\"\d+\.\d+\.\d+\""}
{:path "src/tmx/core.clj" :search-regex #"\"\d+\.\d+\.\d+\""}
{:path "README.md" :search-regex #"\d+\.\d+\.\d+"}
]
}
Expand Down Expand Up @@ -63,5 +63,5 @@
"--no-fallback"]
}

:main ^:skip-aot tmuxificator.core
:main ^:skip-aot tmx.core
)
4 changes: 2 additions & 2 deletions src/tmuxificator/core.clj → src/tmx/core.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(ns tmuxificator.core
(ns tmx.core
(:gen-class)
(:require
[clojure.java.io :as io]
[clojure.edn :as edn]
[clojure.core.strint :refer (<<)]
[clojure.java.shell :refer (with-sh-dir sh)]))
[clojure.java.shell :refer (sh)]))

(defn stderr [e]
(binding [*out* *err*]
Expand Down

0 comments on commit 05cda8e

Please sign in to comment.