@haibun/utils 1.59.1 → 1.59.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@haibun/utils",
3
3
  "type": "module",
4
- "version": "1.59.1",
4
+ "version": "1.59.2",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "files": ["ref.package.json", "build/**", "scaffold/**", "vcapture/**"],
@@ -47,10 +47,4 @@ RUN npm i # && npm install kokoro-js # kokoro-js is installed on demand in captu
47
47
  RUN mkdir -p /run/user/1000 && chmod 700 /run/user/1000
48
48
 
49
49
  # Set xfce4 as the default desktop environment
50
- ENV DISPLAY=:1
51
- RUN echo "xfce4-session" > ~/.xsession
52
-
53
- # Start xfce4 session in the background
54
- RUN echo "xfce4-session &" >> /etc/profile
55
-
56
50
  ENTRYPOINT ["./entrypoint.sh"]
@@ -52,6 +52,8 @@ echo "entrypoint is setting up the environment (logfile is $LOGFILE)"
52
52
 
53
53
  } >"$LOGFILE" 2>&1
54
54
 
55
+ xfce4-session &
56
+
55
57
  echo $COMMAND_TO_RECORD > output/command_to_record.txt
56
58
  echo "Command recorded in output/command_to_record.txt"
57
59
  eval "$COMMAND_TO_RECORD"