Skip to content

Commit

Permalink
Add debug print
Browse files Browse the repository at this point in the history
Co-authored-by: @ghrpp <[email protected]>
Co-authored-by: @rublag_hs <[email protected]>
Co-authored-by: @Nikita_Sinc <[email protected]>
Co-authored-by: @deREXte <[email protected]>
  • Loading branch information
5 people committed Mar 11, 2024
1 parent 7df1f38 commit 304d2d0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions bb.edn
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,16 @@

install-npm
{:depends [clean-up-npm]
:task (do
(println "- SLEEP #1")
(Thread/sleep (rand-int 100000))
:task (let [s1 (rand-int 100000)
s2 (rand-int 100000)]

(println "- SLEEP #1" s1)
(Thread/sleep s1)
(println "- SLEEP #1 done")
(shell "npm --registry=https://packages.simplifier.net install")
(println "- SLEEP #2")
(Thread/sleep (rand-int 100000))
(Thread/sleep s2)
(println "- SLEEP #2 done")
(shell "npm --registry=https://packages.simplifier.net install"))}

pull-nz-igs
Expand Down

0 comments on commit 304d2d0

Please sign in to comment.