Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
79a0f061
Commit
79a0f061
authored
9 years ago
by
Michael Lumish
Browse files
Options
Downloads
Patches
Plain Diff
Properly delete Node OpenSSL headers after downloading them
parent
d445fc01
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tools/run_tests/build_node.bat
+9
-1
9 additions, 1 deletion
tools/run_tests/build_node.bat
tools/run_tests/pre_build_node.bat
+1
-8
1 addition, 8 deletions
tools/run_tests/pre_build_node.bat
with
10 additions
and
9 deletions
tools/run_tests/build_node.bat
+
9
−
1
View file @
79a0f061
...
...
@@ -27,4 +27,12 @@
@rem (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
@rem OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
npm
install
--build-from-source
\ No newline at end of file
call
npm
install
--build-from-source
@rem delete the redundant openssl headers
for
/f
"delims=v"
%%v
in
(
'node --version'
)
do
(
rmdir
"
%HOMEDRIVE%%
HOMEPATH
%
\.node-gyp\
%%v
\include\node\openssl"
/S /Q
)
@rem rebuild, because it probably failed the first time
call
npm
install
--build-from-source
\ No newline at end of file
This diff is collapsed.
Click to expand it.
tools/run_tests/pre_build_node.bat
+
1
−
8
View file @
79a0f061
...
...
@@ -28,12 +28,5 @@
@rem OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@rem Expire cache after 1 week
npm
update
--cache-min
604800
call
npm
update
--cache-min
604800
npm
install
node
-gyp-install
.\node_modules\.bin\node
-gyp-install
.cmd
@rem delete the redundant openssl headers
for
/f
"delims=v"
%%v
in
(
'node --version'
)
do
(
rmdir
"
%HOMEDRIVE%%
HOMEPATH
%
\.node-gyp\
%%v
\include\node\openssl"
/S /Q
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment