view tests/test-xdg.t @ 51981:d07034819565

install: add long_description_content_type
author paugier <pierre.augier@univ-grenoble-alpes.fr>
date Thu, 03 Oct 2024 14:45:01 +0200
parents a4b3b8dee0a8
children
line wrap: on
line source

#if no-windows

  $ mkdir -p xdgconf/hg
  $ echo '[ui]' > xdgconf/hg/hgrc
  $ echo 'username = foobar' >> xdgconf/hg/hgrc
  $ XDG_CONFIG_HOME="`pwd`/xdgconf" ; export XDG_CONFIG_HOME
  $ unset HGRCPATH
  $ hg config ui.username 2>/dev/null
  foobar

#endif