[Koha-bugs] [Bug 35079] Add option to gulp tasks po:update and po:create to control if POT should be built

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Nov 13 14:30:34 CET 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35079

--- Comment #18 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> ---
Just adding a few lines for anyone who reads this later. Resolved situation by:

Using NODE_MAJOR=18

# npm / nodejs
    mkdir -p /etc/apt/keyrings; \
    curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg
--dearmor -o /etc/apt/keyrings/nodesource.gpg; \
    echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg]
https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee
/etc/apt/sources.list.d/nodesource.list; \
    apt-get update; \
    apt-get -yq install nodejs; \
    npm install -g yarn; \

Note that you cannot apt-get install nodejs npm. This gives a conflict. npm is
part of the above install of nodejs.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list