Skip to content

Commit 3c4920b

Browse files
committed
Using relative dir for BUILD_BUNDLE_DIR linux
1 parent 66bc91c commit 3c4920b

File tree

6 files changed

+19
-16
lines changed

6 files changed

+19
-16
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.0.4
2+
3+
- Updated BUILD_BUNDLE_DIR for linux, using relative dir
14
## 3.0.3
25

36
- Fixed path import with spaces in cocoapods for ios

example/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM jerson/flutter:web AS build-env
33
WORKDIR /app
44
COPY . .
55
RUN flutter upgrade
6-
RUN cd example && flutter build web
6+
RUN cd example && flutter build web
77

88
FROM nginx
99

example/pubspec.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ packages:
3535
name: async
3636
url: "https://pub.dartlang.org"
3737
source: hosted
38-
version: "2.8.1"
38+
version: "2.8.2"
3939
boolean_selector:
4040
dependency: transitive
4141
description:
@@ -49,7 +49,7 @@ packages:
4949
name: characters
5050
url: "https://pub.dartlang.org"
5151
source: hosted
52-
version: "1.1.0"
52+
version: "1.2.0"
5353
charcode:
5454
dependency: transitive
5555
description:
@@ -119,7 +119,7 @@ packages:
119119
path: ".."
120120
relative: true
121121
source: path
122-
version: "3.0.3"
122+
version: "3.0.4"
123123
ffi:
124124
dependency: transitive
125125
description:
@@ -214,7 +214,7 @@ packages:
214214
name: matcher
215215
url: "https://pub.dartlang.org"
216216
source: hosted
217-
version: "0.12.10"
217+
version: "0.12.11"
218218
meta:
219219
dependency: transitive
220220
description:
@@ -263,7 +263,7 @@ packages:
263263
name: platform
264264
url: "https://pub.dartlang.org"
265265
source: hosted
266-
version: "3.0.0"
266+
version: "3.0.2"
267267
pool:
268268
dependency: transitive
269269
description:
@@ -380,21 +380,21 @@ packages:
380380
name: test
381381
url: "https://pub.dartlang.org"
382382
source: hosted
383-
version: "1.17.10"
383+
version: "1.17.12"
384384
test_api:
385385
dependency: transitive
386386
description:
387387
name: test_api
388388
url: "https://pub.dartlang.org"
389389
source: hosted
390-
version: "0.4.2"
390+
version: "0.4.3"
391391
test_core:
392392
dependency: transitive
393393
description:
394394
name: test_core
395395
url: "https://pub.dartlang.org"
396396
source: hosted
397-
version: "0.4.0"
397+
version: "0.4.2"
398398
typed_data:
399399
dependency: transitive
400400
description:
@@ -415,7 +415,7 @@ packages:
415415
name: vm_service
416416
url: "https://pub.dartlang.org"
417417
source: hosted
418-
version: "7.1.1"
418+
version: "7.3.0"
419419
watcher:
420420
dependency: transitive
421421
description:

linux/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set(fast_rsa_bundled_libraries
2424
PARENT_SCOPE
2525
)
2626

27-
set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle")
27+
set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/../../bundle")
2828
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
2929
set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE)
3030
endif()

pubspec.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
name: async
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "2.8.1"
10+
version: "2.8.2"
1111
boolean_selector:
1212
dependency: transitive
1313
description:
@@ -21,7 +21,7 @@ packages:
2121
name: characters
2222
url: "https://pub.dartlang.org"
2323
source: hosted
24-
version: "1.1.0"
24+
version: "1.2.0"
2525
charcode:
2626
dependency: transitive
2727
description:
@@ -85,7 +85,7 @@ packages:
8585
name: matcher
8686
url: "https://pub.dartlang.org"
8787
source: hosted
88-
version: "0.12.10"
88+
version: "0.12.11"
8989
meta:
9090
dependency: transitive
9191
description:
@@ -146,7 +146,7 @@ packages:
146146
name: test_api
147147
url: "https://pub.dartlang.org"
148148
source: hosted
149-
version: "0.4.2"
149+
version: "0.4.3"
150150
typed_data:
151151
dependency: transitive
152152
description:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fast_rsa
22
description: library for use RSA with support for android and ios, macOS, linux, windows, web and hover
3-
version: 3.0.3
3+
version: 3.0.4
44
homepage: https://github.com/jerson/flutter-rsa
55

66
environment:

0 commit comments

Comments
 (0)