Skip to content

Commit

Permalink
create tarball script
Browse files Browse the repository at this point in the history
  • Loading branch information
joajfreitas committed Jan 6, 2024
1 parent e39ba70 commit bb067b4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
File renamed without changes.
15 changes: 15 additions & 0 deletions scripts/create_tarball.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

name=marcador-v0.6.0-x86_64-unknown-linux-gnu

mkdir $name

cargo build --release
cp target/release/marcador $name
cp target/release/marcador_server $name
cp README.md $name
cp LICENSE $name

tar -cvf $name.tar.gz $name/*

rm -rf $name

0 comments on commit bb067b4

Please sign in to comment.