File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def build_source_package(version, filename):
25
25
26
26
def pack (name , contents ):
27
27
contents = contents .encode ()
28
- tar_info = tarfile .TarInfo (f"deltachat-rpc-server -{ version } /{ name } " )
28
+ tar_info = tarfile .TarInfo (f"deltachat_rpc_server -{ version } /{ name } " )
29
29
tar_info .mode = 0o644
30
30
tar_info .size = len (contents )
31
31
pkg .addfile (tar_info , BytesIO (contents ))
@@ -167,7 +167,7 @@ def main():
167
167
cargo_manifest = tomllib .load (fp )
168
168
version = cargo_manifest ["package" ]["version" ]
169
169
if sys .argv [1 ] == "source" :
170
- filename = f"deltachat-rpc-server -{ version } .tar.gz"
170
+ filename = f"deltachat_rpc_server -{ version } .tar.gz"
171
171
build_source_package (version , filename )
172
172
else :
173
173
arch = sys .argv [1 ]
You can’t perform that action at this time.
0 commit comments