Skip to content

Commit

Permalink
Merge pull request #2 from vieiraroger/testing-githubactions-true
Browse files Browse the repository at this point in the history
Testing github actions
  • Loading branch information
vieiraroger authored Dec 19, 2023
2 parents d0b83d3 + 2d6c2c6 commit f2b7662
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions src/abathur/commands.clj
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@
{:status true :message "Arquivo criado com deletado"}
{:status false :message "Arquivo não pode ser deletado"})))


; TODO enum com as mensagens em portugues e ingles utilizar o :xyz
3 changes: 2 additions & 1 deletion src/abathur/logic.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
[path]
(-> path
(s/replace #"//" "/")
(s/replace #"/" "\\")))
(s/replace #"/" "\\")
(s/replace #"\\\\" "\\")))

(defn back-one-folder [folders]
(drop-last folders))
Expand Down

0 comments on commit f2b7662

Please sign in to comment.