Skip to content

Commit 8d3f12a

Browse files
committed
update greet function!
1 parent 3b6a473 commit 8d3f12a

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

src/DrWatson.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ function __init__()
2626
end
2727

2828
# Update messages
29-
display_update = true
30-
update_version = "1.0.0"
31-
update_name = "update_v$update_version"
29+
const display_update = true
30+
const update_version = "1.0.0"
31+
const update_name = "update_v$update_version"
3232
if display_update
3333
if !isfile(joinpath(@__DIR__, update_name))
3434
printstyled(stdout,

src/project_setup.jl

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,14 @@ vecstring(a::Vector{String}) = a
228228
vecstring(c) = [string(a) for a in c]
229229

230230
function greet()
231-
println(
231+
s =
232232
"""
233-
DrWatson is currently in beta.
234-
Help us make it better by opening
235-
issues on GitHub or submitting feature requests!
236-
237233
Currently active project is: $(projectname())
238234
239235
Have fun with your new project!
236+
237+
You can help us make improve DrWatson by opening
238+
issues on GitHub or submitting feature requests!
240239
"""
241-
)
240+
println(s)
242241
end

0 commit comments

Comments
 (0)