Skip to content

Commit 9711674

Browse files
committed
fix: Fix publish.sh
1 parent 2a6ef05 commit 9711674

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Cargo.toml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
name = "qli"
33
version = "0.1.0"
44
edition = "2021"
5+
include = ["src/**.rs", "Cargo.*", "README.md", "LICENSE"]
6+
authors = ["Brian3647 <[email protected]>"]
7+
license = "MIT"
8+
description = "🐳 Extremelly small rust binary to generate http requests using json/yaml"
9+
homepage = "https://github.com/Brian3647/qli"
10+
repository = "https://github.com/Brian3647/qli"
511

612
[dependencies]
713
anyhow = "1.0.75"

publish.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ $(git rev-parse HEAD) != $(git rev-parse @{u}) ]; then
99
fi
1010

1111
TMPDIR=$(mktemp -d)
12-
cp -r . $TMPDIR
12+
git clone https://github.com/Brian3647/qli $TMPDIR
1313
cd $TMPDIR
1414
cargo publish
1515

0 commit comments

Comments
 (0)