Skip to content
This repository was archived by the owner on Jul 11, 2021. It is now read-only.

Commit 694b508

Browse files
committed
remove trial from features in build script
1 parent 6cc7c58 commit 694b508

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

release.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@
2222
intel = "x86_64-unknown-linux-gnu"
2323

2424
pro = "--features=pro"
25-
trial = "--features=trial"
2625

2726
for target in [arm, intel]:
28-
for feature in ["", pro, trial]:
27+
for feature in ["", pro]:
2928
cmd = "CARGO_TARGET_DIR={} cargo build --release --target {} {}".format(scratch_space, target, feature)
3029
print("Executing:", cmd)
3130
os.system(cmd)

0 commit comments

Comments
 (0)