You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Powershell Core x64 Global Variable $PSEdition on Linux delivers "core" instead of "Core".
Because you asking explicit for "-eq", this will result in loading the wrong DLLs:
Exception calling "Open" with "0" argument(s): "Unable to load shared library 'SQLite.Interop.dll' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: libSQLite.Interop.dll: cannot open shared object file: No such file or directory"
The text was updated successfully, but these errors were encountered:
You should fix Line 8 of
PSSQLite.psm1
if ($PSEdition -like 'core')
The Powershell Core x64 Global Variable
$PSEdition
on Linux delivers"core"
instead of"Core"
.Because you asking explicit for "-eq", this will result in loading the wrong DLLs:
Exception calling "Open" with "0" argument(s): "Unable to load shared library 'SQLite.Interop.dll' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: libSQLite.Interop.dll: cannot open shared object file: No such file or directory"
The text was updated successfully, but these errors were encountered: