File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ function __init__()
26
26
end
27
27
28
28
# 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 "
32
32
if display_update
33
33
if ! isfile (joinpath (@__DIR__ , update_name))
34
34
printstyled (stdout ,
Original file line number Diff line number Diff line change @@ -228,15 +228,14 @@ vecstring(a::Vector{String}) = a
228
228
vecstring (c) = [string (a) for a in c]
229
229
230
230
function greet ()
231
- println (
231
+ s =
232
232
"""
233
- DrWatson is currently in beta.
234
- Help us make it better by opening
235
- issues on GitHub or submitting feature requests!
236
-
237
233
Currently active project is: $(projectname ())
238
234
239
235
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!
240
239
"""
241
- )
240
+ println (s )
242
241
end
You can’t perform that action at this time.
0 commit comments