treewide: fix double quoted strings in meta.description
Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
This commit is contained in:
@@ -64,7 +64,7 @@ let
|
||||
HOME=. rebar3 compile
|
||||
${if compilePorts then ''
|
||||
HOME=. rebar3 pc compile
|
||||
'' else ''''}
|
||||
'' else ""}
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
|
||||
@@ -46,25 +46,25 @@ let
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
${if checkouts != null then
|
||||
''cp --no-preserve=all -R ${checkouts}/_checkouts .''
|
||||
"cp --no-preserve=all -R ${checkouts}/_checkouts ."
|
||||
else
|
||||
''''}
|
||||
""}
|
||||
runHook postConfigure
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
HOME=. DEBUG=1 rebar3 as ${profile} ${if releaseType == "escript"
|
||||
then '' escriptize''
|
||||
else '' release''}
|
||||
then "escriptize"
|
||||
else "release"}
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
dir=${if releaseType == "escript"
|
||||
then ''bin''
|
||||
else ''rel''}
|
||||
then "bin"
|
||||
else "rel"}
|
||||
mkdir -p "$out/$dir"
|
||||
cp -R --preserve=mode "_build/${profile}/$dir" "$out"
|
||||
runHook postInstall
|
||||
|
||||
Reference in New Issue
Block a user