This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
SisMaker
/
rebar3
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
62
Wiki
Activity
Browse Source
Use init:stop/1 over halt/1 to ensure all I/O gets a chance to flush
pull/3/head
Dave Smith
15 years ago
parent
2734f2bcc2
commit
30a3816c86
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
include/rebar.hrl
+ 1
- 1
include/rebar.hrl
View File
@ -5,7 +5,7 @@
-
define
(
FAIL
,
throw
(
{
error
,
failed
}
)
)
.
-
define
(
ABORT
(
Str
,
Args
)
,
?
ERROR
(
Str
,
Args
)
,
halt
(
1
)
)
.
-
define
(
ABORT
(
Str
,
Args
)
,
?
ERROR
(
Str
,
Args
)
,
init
:
stop
(
1
)
)
.
-
define
(
CONSOLE
(
Str
,
Args
)
,
io
:
format
(
Str
,
Args
)
)
.
Write
Preview
Loading…
Cancel
Save