mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 14:13:07 +00:00
34d7b84d1e
Change-type: patch Signed-off-by: Paulo Castro <paulo@balena.io>
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
diff --git a/node_modules/pkg/lib-es5/packer.js b/node_modules/pkg/lib-es5/packer.js
|
|
index 7295bb6..76805a3 100644
|
|
--- a/node_modules/pkg/lib-es5/packer.js
|
|
+++ b/node_modules/pkg/lib-es5/packer.js
|
|
@@ -128,6 +128,7 @@ function _default({
|
|
const newStat = Object.assign({}, value);
|
|
newStat.isFileValue = value.isFile();
|
|
newStat.isDirectoryValue = value.isDirectory();
|
|
+ newStat.isSocketValue = value.isSocket();
|
|
const buffer = Buffer.from(JSON.stringify(newStat));
|
|
stripes.push({
|
|
snap,
|
|
diff --git a/node_modules/pkg/prelude/bootstrap.js b/node_modules/pkg/prelude/bootstrap.js
|
|
index 216579e..4904726 100644
|
|
--- a/node_modules/pkg/prelude/bootstrap.js
|
|
+++ b/node_modules/pkg/prelude/bootstrap.js
|
|
@@ -866,8 +866,10 @@ function payloadFileSync (pointer) {
|
|
|
|
var isFileValue = s.isFileValue;
|
|
var isDirectoryValue = s.isDirectoryValue;
|
|
+ var isSocketValue = s.isSocketValue;
|
|
delete s.isFileValue;
|
|
delete s.isDirectoryValue;
|
|
+ delete s.isSocketValue;
|
|
|
|
s.isFile = function () {
|
|
return isFileValue;
|
|
@@ -875,6 +877,9 @@ function payloadFileSync (pointer) {
|
|
s.isDirectory = function () {
|
|
return isDirectoryValue;
|
|
};
|
|
+ s.isSocket = function () {
|
|
+ return isSocketValue;
|
|
+ };
|
|
s.isSymbolicLink = function () {
|
|
return false;
|
|
};
|