@@ -113,7 +113,7 @@ def make(repo, component, clean, install, install_prefix, storage_type, with_jav
113
113
run_shell_cmd (cmd , repo .home )
114
114
return
115
115
click .secho (
116
- f "Before making artifacts, please manually source ENVs from ~/.graphscope_env." ,
116
+ "Before making artifacts, please manually source ENVs from ~/.graphscope_env." ,
117
117
fg = "yellow" ,
118
118
)
119
119
click .secho (
@@ -144,8 +144,8 @@ def make(repo, component, clean, install, install_prefix, storage_type, with_jav
144
144
)
145
145
click .secho (f"Begin to extract, from { workingdir } ." , fg = "green" )
146
146
run_shell_cmd (cmd , workingdir )
147
- click .secho (f "GraphScope interactive engine has been built." , fg = "green" )
148
- if install == True :
147
+ click .secho ("GraphScope interactive engine has been built." , fg = "green" )
148
+ if install is True :
149
149
cmd = [
150
150
"make" ,
151
151
"interactive-install" ,
@@ -162,8 +162,8 @@ def make(repo, component, clean, install, install_prefix, storage_type, with_jav
162
162
if with_java :
163
163
cmd = ["make" , "analytical-java" ]
164
164
run_shell_cmd (cmd , repo .home )
165
- click .secho (f "GraphScope analytical engine has been built." , fg = "green" )
166
- if install == True :
165
+ click .secho ("GraphScope analytical engine has been built." , fg = "green" )
166
+ if install is True :
167
167
cmd = [
168
168
"make" ,
169
169
"analytical-install" ,
@@ -183,10 +183,10 @@ def make(repo, component, clean, install, install_prefix, storage_type, with_jav
183
183
cmd = ["make" , "coordinator" ]
184
184
run_shell_cmd (cmd , repo .home )
185
185
186
- if component == None :
186
+ if component is None :
187
187
click .secho ("Building all components." , fg = "green" )
188
188
cmd = ["make" , "all" ]
189
- if install == True :
189
+ if install is True :
190
190
cmd = ["make" , "install" , "INSTALL_PREFIX={}" .format (install_prefix )]
191
191
run_shell_cmd (cmd , repo .home )
192
192
0 commit comments